Skip to main content

All Questions

1vote
2answers
1kviews

Do any languages other than Haskell implement strings as linked lists of characters?

Haskell’s String type is an alias for [Char] (i.e. a linked list of Chars). Does any other language use an implementation of strings like this?
Daphne Preston-Kendal's user avatar

close